home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / CW MacMindy 1.4 / Examples / debug / debug.dyl next >
Encoding:
Text File  |  1995-07-10  |  235 b   |  17 lines  |  [TEXT/CWIE]

  1. module: dylan-user
  2.  
  3. /*
  4.     debug.dyl
  5.  
  6.     shows how to break into the debugger.
  7.  */
  8.  
  9. define method main (argv0, #rest args)
  10.     let z = 1902239164;
  11.     print(object-class(z));
  12.     print(z);
  13.     let x = 1;
  14.     let y = x + 1;
  15.     break("try \"locals\".");
  16. end;
  17.